home *** CD-ROM | disk | FTP | other *** search
/ The Guided Tour of Multimedia (Second Edition) / The Guided Tour of Multimedia (Second Edition).iso / trials / director / evalcopy / director.z / NOH_TALE.DIR / 00091_Script_91 < prev    next >
Text File  |  1994-06-29  |  635b  |  18 lines

  1. --Choosing "Loud" from the custom Volume menu has the playback
  2. --head go to the frame marked "Loud." This handler sets 
  3. --the computer's sound level to 7, puts a checkmark
  4. --next to the "Loud" command in the Volume menu, and removes 
  5. --checkmarks from the other Volume menu items.
  6.  
  7.  
  8. on exitframe
  9.   set the soundLevel to 7
  10.   beep
  11.   
  12.   Set the checkMark of menuItem "LOUD" of menu "VOLUME" to TRUE
  13.   Set the checkMark of menuItem "MEDIUM" of menu "VOLUME" to FALSE
  14.   Set the checkMark of menuItem "SOFT" of menu "VOLUME" to FALSE
  15.   Set the checkMark of menuItem "MUTE" of menu "VOLUME" to FALSE
  16.   go to frame "Stay"
  17. end
  18.